import { lang } from "next/root-params"; import { getLocalizedPath } from "@/lib/geistdocs/public-path"; const NotFound = async () => { const currentLang = await lang(); const path = (value: string) => getLocalizedPath(currentLang, value); return (

404

Page not found

The requested page does not exist. Browse the documentation or use a machine-readable index to find the closest current page.

); }; export default NotFound;